home *** CD-ROM | disk | FTP | other *** search
- #pragma once
- Boolean RectValid(const Rect *r);
- void RectLocalToGlobal(Rect *r);
- void RectGlobalToLocal(Rect *r);
- void RectPortToGlobal(Rect *r, GrafPtr port);
- void RectGlobalToPort(Rect *r, GrafPtr port);
- short RectHeight(const Rect *r);
- short RectWidth(const Rect *r);
- long RectArea(const Rect *r);
- Boolean RectWithin(const Rect *r1, const Rect *r2);
- Boolean RectIntersect(const Rect *r1, const Rect *r2);
- void RectDiff(const Rect *r1, const Rect *r2, Rect *r3);
- void RectSize(Rect *r, short h, short v);
- void RectMove(Rect *r, short h, short v);
- void RectPosition(const Rect *r1, const Rect *r2, short h, short v, Point *pt);
- void RectPositionInScreen(const Rect *r, short h, short v, Point *pt);
-